home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / src / ConfigFileSrc.lha / ConfigFileSrc12 / RexxLibrary / Funcs / Unlock.c < prev   
Encoding:
Text File  |  1997-10-02  |  2.2 KB  |  98 lines

  1. /*
  2. **        $PROJECT: RexxConfigFile.library
  3. **        $FILE: Unlock.c
  4. **        $DESCRIPTION: rxcf_Unlock#?() functions
  5. **
  6. **        (C) Copyright 1997 Marcel Karas
  7. **             All Rights Reserved.
  8. */
  9.  
  10. IMPORT struct Library *CFBase;
  11.  
  12. /****** rexxconfigfile.library/cf_UnlockArgList ******************************
  13. *
  14. *   NAME
  15. *        cf_UnlockArgList -- Unlocks the argument list of the group node.
  16. *
  17. *   SYNOPSIS
  18. *        cf_UnlockArgList(GrpNode)
  19. *
  20. *        cf_UnlockArgList(GRPNODE/N/A)
  21. *
  22. *   FUNCTION
  23. *        This function unlocks the access on the argument list.
  24. *
  25. *   INPUTS
  26. *        GrpNode - The group node for the argument list.
  27. *
  28. *   SEE ALSO
  29. *        cf_UnlockGrpList(), cf_UnlockItemList(), cf_LockArgList()
  30. *
  31. ******************************************************************************
  32. *
  33. */
  34.  
  35. UWORD rxcf_UnlockArgList ( RX_FUNC_ARGS, CFGroup * GrpNode )
  36. {
  37.     cf_UnlockArgList (GrpNode);
  38.     return (RC_OK);
  39. }
  40.  
  41. /****** rexxconfigfile.library/cf_UnlockGrpList ******************************
  42. *
  43. *   NAME
  44. *        cf_UnlockGrpList -- Unlocks the group list of the header.
  45. *
  46. *   SYNOPSIS
  47. *        cf_UnlockGrpList(Header)
  48. *
  49. *        cf_UnlockGrpList(HEADER/N/A)
  50. *
  51. *   FUNCTION
  52. *        This function unlocks the access on the group list.
  53. *
  54. *   INPUTS
  55. *        Header - Pointer to the CFHeader structure.
  56. *
  57. *   SEE ALSO
  58. *        cf_UnlockArgList(), cf_UnlockItemList(), cf_LockGrpList()
  59. *
  60. ******************************************************************************
  61. *
  62. */
  63.  
  64. UWORD rxcf_UnlockGrpList ( RX_FUNC_ARGS, CFHeader * Header )
  65. {
  66.     cf_UnlockGrpList (Header);
  67.     return (RC_OK);
  68. }
  69.  
  70. /****** rexxconfigfile.library/cf_UnlockItemList ******************************
  71. *
  72. *   NAME
  73. *        cf_UnlockItemList -- Unlocks the item list of the argument node.
  74. *
  75. *   SYNOPSIS
  76. *        cf_UnlockItemList(ArgNode)
  77. *
  78. *        cf_UnlockItemList(ARGNODE/N/A)
  79. *
  80. *   FUNCTION
  81. *        This function unlocks the access on the item list.
  82. *
  83. *   INPUTS
  84. *        ArgNode - The argument node for item list.
  85. *
  86. *   SEE ALSO
  87. *        cf_UnlockArgList(), cf_UnlockGrpList(), cf_LockItemList()
  88. *
  89. ******************************************************************************
  90. *
  91. */
  92.  
  93. UWORD rxcf_UnlockItemList ( RX_FUNC_ARGS, CFArgument * ArgNode )
  94. {
  95.     cf_UnlockItemList (ArgNode);
  96.     return (RC_OK);
  97. }
  98.